home *** CD-ROM | disk | FTP | other *** search
-
-
-
- MMMMPPPPIIII____TTTTEEEESSSSTTTT((((3333)))) MMMMPPPPIIII____TTTTEEEESSSSTTTT((((3333))))
-
-
-
- NNNNAAAAMMMMEEEE
- MMMMPPPPIIII____TTTTeeeesssstttt - Tests for the completion of a send or receive operation
-
- SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
- C:
-
- #include <mpi.h>
-
- int MPI_Test ( _r_e_q_u_e_s_t, _f_l_a_g, _s_t_a_t_u_s )
- MPI_Request *_r_e_q_u_e_s_t;
- int *_f_l_a_g;
- MPI_Status *_s_t_a_t_u_s;
-
-
- C++:
-
- #include <mpi.h>
-
- bool Request::Test()
-
-
- Fortran:
-
- INCLUDE "mpif.h" (or USE MPI)
-
- LOGICAL _f_l_a_g
- INTEGER _r_e_q_u_e_s_t, _s_t_a_t_u_s(MPI_STATUS_SIZE), _i_e_r_r_o_r
-
- CALL MPI_TEST(_r_e_q_u_e_s_t, _f_l_a_g, _s_t_a_t_u_s(MPI_STATUS_SIZE), _i_e_r_r_o_r)
-
-
- SSSSTTTTAAAANNNNDDDDAAAARRRRDDDDSSSS
- This release implements the MPI 1.2 standard, as documented by the MPI
- Forum in the spring 1997 release of _M_P_I: _A _M_e_s_s_a_g_e _P_a_s_s_i_n_g _I_n_t_e_r_f_a_c_e
- _S_t_a_n_d_a_r_d.
-
- DDDDEEEESSSSCCCCRRRRIIIIPPPPTTTTIIIIOOOONNNN
- The MMMMPPPPIIII____TTTTeeeesssstttt routine tests for the completion of a send or receive
- operation. This routine accepts the following parameters:
-
- _r_e_q_u_e_s_t Specifies the communication request (handle)
-
- _f_l_a_g Returns a value of ttttrrrruuuueeee if operation completed (logical)
-
- _s_t_a_t_u_s Returns the status object (status)
-
- _i_e_r_r_o_r Specifies the return code value for successful completion,
- which is in MPI_SUCCESS. MPI_SUCCESS is defined in the mmmmppppiiiiffff....hhhh
- file.
-
-
-
-
-
-
- PPPPaaaaggggeeee 1111
-
-
-
-